home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_iichkuser.str < prev    next >
Encoding:
Text File  |  1998-11-12  |  1010 b   |  29 lines

  1. <%
  2. 'Localizable strings for iichkuser.asp
  3.  
  4. Const L_THEDOMAIN_TEXT = "The domain"
  5. Const L_THEUSER_TEXT = "The user or group"
  6. Const L_NOTEXIST_TEXT = "does not exist"
  7. Const L_INDOMAIN_TEXT = "in this domain"
  8. Const L_PERIOD_TEXT = "."
  9. Const L_SLASH_TEXT = "/"
  10. Const L_BCKSLASH_TEXT = "\\"
  11. Const L_SPACE = " "
  12.  
  13. ' Build the necessary error strings here so that the order is not in the code
  14. ' and can be localized.
  15. ' domain - contains the domain being searched
  16. ' uname - contains the user or group name being searched for
  17.  
  18. 'Const L_DOMAIN_NOT_EXIST = "The domain () does not exist."
  19. 'Const L_USER_NOT_EXIST = "The user or group () does not exist in this domain."
  20.  
  21. Dim L_DOMAIN_NOT_EXIST, L_USER_NOT_EXIST
  22.  
  23. L_DOMAIN_NOT_EXIST =     L_THEDOMAIN_TEXT & L_SPACE & domain & L_SPACE & _
  24.                         L_NOTEXIST_TEXT & L_PERIOD_TEXT
  25. L_USER_NOT_EXIST =         L_THEUSER_TEXT & L_SPACE & domain & L_BCKSLASH_TEXT & _
  26.                         uname & L_SPACE & L_NOTEXIST_TEXT & L_SPACE & _
  27.                         L_INDOMAIN_TEXT & L_PERIOD_TEXT
  28. %>
  29.